ef570f763dd77cd37ec256a6b1031167af9a9f60
[lhc/web/wiklou.git] / config / index.php
1 <?php
2 # MediaWiki web-based config/installation
3 # Copyright (C) 2004 Brion Vibber <brion@pobox.com>
4 # http://www.mediawiki.org/
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with this program; if not, write to the Free Software Foundation, Inc.,
18 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 # http://www.gnu.org/copyleft/gpl.html
20
21 error_reporting( E_ALL );
22 header( "Content-type: text/html; charset=utf-8" );
23 @ini_set( "display_errors", true );
24
25 ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
26 "http://www.w3.org/TR/html4/loose.dtd">
27 <html>
28 <head>
29 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
30 <meta name="robots" content="noindex,nofollow">
31 <title>MediaWiki installation</title>
32 <style type="text/css">
33 #credit {
34 float: right;
35 width: 200px;
36 font-size: 0.7em;
37 background-color: #eee;
38 color: black;
39 border: solid 1px #444;
40 padding: 8px;
41 margin-left: 8px;
42 }
43
44 dl.setup dd {
45 margin-left: 0;
46 }
47 dl.setup dd label.column {
48 clear: left;
49 font-weight: bold;
50 width: 12em;
51 float: left;
52 text-align: right;
53 padding-right: 1em;
54 }
55 dl.setup dt {
56 clear: left;
57 font-size: 0.8em;
58 margin-left: 10em;
59 /* margin-right: 200px; */
60 margin-bottom: 2em;
61 }
62 .error {
63 color: red;
64 }
65 ul.plain {
66 list-style: none;
67 clear: both;
68 margin-left: 12em;
69 }
70 </style>
71 </head>
72
73 <body>
74
75 <div id="credit">
76 <center>
77 <a href="http://www.mediawiki.org/"><img
78 src="../skins/common/images/wiki.png" width="135" height="135" alt="" border="0" /></a>
79 </center>
80
81 <b><a href="http://www.mediawiki.org/">MediaWiki</a></b> is
82 Copyright (C) 2001-2004 by Magnus Manske, Brion Vibber, Lee Daniel Crocker,
83 Tim Starling, Erik M&ouml;ller, Gabriel Wicke and others.</p>
84
85 <ul>
86 <li><a href="../README">Readme</a></li>
87 <li><a href="../RELEASE-NOTES">Release notes</a></li>
88 <li><a href="../docs/">doc/</a></li>
89 <li><a href="http://meta.wikipedia.org/wiki/MediaWiki_User's_Guide">User's Guide</a></li>
90 </ul>
91
92 <p>This program is free software; you can redistribute it and/or modify
93 it under the terms of the GNU General Public License as published by
94 the Free Software Foundation; either version 2 of the License, or
95 (at your option) any later version.</p>
96
97 <p>This program is distributed in the hope that it will be useful,
98 but WITHOUT ANY WARRANTY; without even the implied warranty of
99 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
100 GNU General Public License for more details.</p>
101
102 <p>You should have received <a href="../COPYING">a copy of the GNU General Public License</a>
103 along with this program; if not, write to the Free Software
104 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
105 or <a href="http://www.gnu.org/copyleft/gpl.html">read it online</a></p>
106 </div>
107
108 <?php
109
110 $IP = ".."; # Just to suppress notices, not for anything useful
111 define( "MEDIAWIKI", true );
112 define( "MEDIAWIKI_INSTALL", true );
113 require_once( "../includes/Defines.php" );
114 require_once( "../includes/DefaultSettings.php" );
115 require_once( "../includes/MagicWord.php" );
116 require_once( "../includes/Namespace.php" );
117 ?>
118
119 <h1>MediaWiki <?php print $wgVersion ?> installation</h1>
120
121
122 <?php
123
124 /* Check for existing configurations and bug out! */
125
126 if( file_exists( "../LocalSettings.php" ) || file_exists( "../AdminSettings.php" ) ) {
127 dieout( "<h2>Wiki is configured.</h2>
128
129 <p>Already configured... <a href='../index.php'>return to the wiki</a>.</p>
130
131 <p>(You should probably remove this directory for added security.)</p>" );
132 }
133
134 if( file_exists( "./LocalSettings.php" ) || file_exists( "./AdminSettings.php" ) ) {
135 dieout( "<h2>You're configured!</h2>
136
137 <p>Please move <tt>LocalSettings.php</tt> to the parent directory, then
138 <a href='../index.php'>try out your wiki</a>.
139 (You should remove this config directory for added security once you're done.)</p>" );
140 }
141
142 if( !is_writable( "." ) ) {
143 dieout( "<h2>Can't write config file, aborting</h2>
144
145 <p>In order to configure the wiki you have to make the <tt>config</tt> subdirectory
146 writable by the web server. Once configuration is done you'll move the created
147 <tt>LocalSettings.php</tt> to the parent directory, and for added safety you can
148 then remove the <tt>config</tt> subdirectory entirely.</p>
149
150 <p>To make the directory writable on a Unix/Linux system:</p>
151
152 <pre>
153 cd <i>/path/to/wiki</i>
154 chmod a+w config
155 </pre>" );
156 }
157
158
159 require_once( "../install-utils.inc" );
160 require_once( "../maintenance/updaters.inc" );
161 require_once( "../maintenance/convertLinks.inc" );
162 require_once( "../maintenance/archives/moveCustomMessages.inc" );
163
164 class ConfigData {
165 function getEncoded( $data ) {
166 # Hackish
167 global $wgUseLatin1;
168 if( $wgUseLatin1 ) {
169 return utf8_decode( $data ); /* to latin1 wikis */
170 } else {
171 return $data;
172 }
173 }
174 function getSitename() { return $this->getEncoded( $this->Sitename ); }
175 function getSysopName() { return $this->getEncoded( $this->SysopName ); }
176 function getSysopPass() { return $this->getEncoded( $this->SysopPass ); }
177 }
178
179 ?>
180
181 <p><i>Please include all of the lines below when reporting installation problems.</i></p>
182
183 <h2>Checking environment...</h2>
184 <ul>
185 <?php
186 $endl = "
187 ";
188 $wgConfiguring = true;
189 $conf = new ConfigData;
190
191 install_version_checks();
192
193 print "<li>PHP " . phpversion() . ": ";
194 if( version_compare( phpversion(), "5.0", "lt" ) ) {
195 print "ok";
196 } else {
197 print " <b>the MonoBook skin will be disabled due to an incompatibility
198 between the PHPTAL template library and PHP 5</b>. The wiki should
199 function normally, but with the older look and feel.";
200 }
201 print "</li>\n";
202
203 if( ini_get( "register_globals" ) ) {
204 ?>
205 <li><b class='error'>Warning:</b> <b>PHP's
206 <tt><a href="http://php.net/register_globals">register_globals</a></tt>
207 option is enabled.</b> MediaWiki will work correctly, but this setting
208 increases your exposure to potential security vulnerabilities in PHP-based
209 software running on your server. <b>You should disable it if you are able.</b></li>
210 <?php
211 }
212
213 if( ini_get( "safe_mode" ) ) {
214 ?>
215 <li class='error'><b>Warning: PHP's
216 <a href='http://www.php.net/features.safe-mode'>safe mode</a> is active!</b>
217 You will likely have problems caused by this. You may need to make the
218 'images' subdirectory writable or specify a TMP environment variable pointing to
219 a writable temporary directory owned by you, since safe mode breaks the system
220 temporary directory.</li>
221 <?php
222 }
223
224 $sapi = php_sapi_name();
225 $conf->prettyURLs = true;
226 print "<li>PHP server API is $sapi; ";
227 switch( $sapi ) {
228 case "apache":
229 case "apache2handler":
230 print "ok, using pretty URLs (<tt>index.php/Page_Title</tt>)";
231 break;
232 case "cgi":
233 case "cgi-fcgi":
234 case "apache2filter":
235 print "using ugly URLs (<tt>index.php?title=Page_Title</tt>)";
236 $conf->prettyURLs = false;
237 break;
238 default:
239 print "unknown; using pretty URLs (<tt>index.php/Page_Title</tt>), if you have trouble change this in <tt>LocalSettings.php</tt>";
240 }
241 print "</li>\n";
242
243 $conf->xml = function_exists( "utf8_encode" );
244 if( $conf->xml ) {
245 print "<li>Have XML / Latin1-UTF-8 conversion support.</li>\n";
246 } else {
247 dieout( "PHP's XML module is missing; the wiki requires functions in
248 this module and won't work in this configuration.
249 If you're running Mandrake, install the php-xml package." );
250 }
251
252 $memlimit = ini_get( "memory_limit" );
253 $conf->raiseMemory = false;
254 if( empty( $memlimit ) ) {
255 print "<li>PHP is configured with no <tt>memory_limit</tt>.</li>\n";
256 } else {
257 print "<li>PHP's <tt>memory_limit</tt> is " . htmlspecialchars( $memlimit ) . ". <b>If this is too low, installation may fail!</b> ";
258 $n = IntVal( $memlimit );
259 if( preg_match( '/^([0-9]+)[Mm]$/', trim( $memlimit ), $m ) ) {
260 $n = IntVal( $m[1] * (1024*1024) );
261 }
262 if( $n < 20*1024*1024 ) {
263 print "Attempting to raise limit to 20M... ";
264 if( false === ini_set( "memory_limit", "20M" ) ) {
265 print "failed.";
266 } else {
267 $conf->raiseMemory = true;
268 print "ok.";
269 }
270 }
271 print "</li>\n";
272 }
273
274 $conf->zlib = function_exists( "gzencode" );
275 if( $conf->zlib ) {
276 print "<li>Have zlib support; enabling output compression.</li>\n";
277 } else {
278 print "<li>No zlib support.</li>\n";
279 }
280
281 $conf->turck = function_exists( 'mmcache_get' );
282 if ( $conf->turck ) {
283 print "<li><a href=\"http://turck-mmcache.sourceforge.net/\">Turck MMCache</a> installed</li>\n";
284 } else {
285 print "<li><a href=\"http://turck-mmcache.sourceforge.net/\">Turck MMCache</a> not installed, " .
286 "can't use object caching functions</li>\n";
287 }
288
289 $conf->ImageMagick = false;
290 $imcheck = array( "/usr/bin", "/usr/local/bin", "/sw/bin", "/opt/local/bin" );
291 foreach( $imcheck as $dir ) {
292 $im = "$dir/convert";
293 if( file_exists( $im ) ) {
294 print "<li>Found ImageMagick: <tt>$im</tt>; image thumbnailing will be enabled if you enable uploads.</li>\n";
295 $conf->ImageMagick = $im;
296 break;
297 }
298 }
299
300 $conf->HaveGD = function_exists( "imagejpeg" );
301 if( $conf->HaveGD ) {
302 print "<li>Found GD graphics library built-in";
303 if( !$conf->ImageMagick ) {
304 print ", image thumbnailing will be enabled if you enable uploads";
305 }
306 print ".</li>\n";
307 } else {
308 if( !$conf->ImageMagick ) {
309 print "<li>Couldn't find GD library or ImageMagick; image thumbnailing disabled.</li>\n";
310 }
311 }
312
313 $conf->UseImageResize = $conf->HaveGD || $conf->ImageMagick;
314
315 # $conf->IP = "/Users/brion/Sites/inplace";
316 $conf->IP = dirname( dirname( __FILE__ ) );
317 print "<li>Installation directory: <tt>" . htmlspecialchars( $conf->IP ) . "</tt></li>\n";
318
319 # $conf->ScriptPath = "/~brion/inplace";
320 $conf->ScriptPath = preg_replace( '{^(.*)/config.*$}', '$1', $_SERVER["REQUEST_URI"] );
321 print "<li>Script URI path: <tt>" . htmlspecialchars( $conf->ScriptPath ) . "</tt></li>\n";
322
323 $conf->posted = ($_SERVER["REQUEST_METHOD"] == "POST");
324
325 $conf->Sitename = ucfirst( importPost( "Sitename", "" ) );
326 $conf->EmergencyContact = importPost( "EmergencyContact", $_SERVER["SERVER_ADMIN"] );
327 $conf->DBserver = importPost( "DBserver", "localhost" );
328 $conf->DBname = importPost( "DBname", "wikidb" );
329 $conf->DBuser = importPost( "DBuser", "wikiuser" );
330 $conf->DBpassword = importPost( "DBpassword" );
331 $conf->DBpassword2 = importPost( "DBpassword2" );
332 $conf->RootPW = importPost( "RootPW" );
333 $conf->LanguageCode = importPost( "LanguageCode", "en" );
334 $conf->SysopName = importPost( "SysopName", "WikiSysop" );
335 $conf->SysopPass = importPost( "SysopPass" );
336 $conf->SysopPass2 = importPost( "SysopPass2" );
337
338 /* Check for validity */
339 $errs = array();
340
341 if( $conf->Sitename == "" || $conf->Sitename == "MediaWiki" || $conf->Sitename == "Mediawiki" ) {
342 $errs["Sitename"] = "Must not be blank or \"MediaWiki\".";
343 }
344 if( $conf->DBuser == "" ) {
345 $errs["DBuser"] = "Must not be blank";
346 }
347 if( $conf->DBpassword == "" ) {
348 $errs["DBpassword"] = "Must not be blank";
349 }
350 if( $conf->DBpassword != $conf->DBpassword2 ) {
351 $errs["DBpassword2"] = "Passwords don't match!";
352 }
353
354 if( $conf->SysopPass == "" ) {
355 $errs["SysopPass"] = "Must not be blank";
356 }
357 if( $conf->SysopPass != $conf->SysopPass2 ) {
358 $errs["SysopPass2"] = "Passwords don't match!";
359 }
360
361 $conf->License = importRequest( "License", "none" );
362 if( $conf->License == "gfdl" ) {
363 $conf->RightsUrl = "http://www.gnu.org/copyleft/fdl.html";
364 $conf->RightsText = "GNU Free Documentation License 1.2";
365 $conf->RightsCode = "gfdl";
366 $conf->RightsIcon = '${wgStylePath}/common/images/gnu-fdl.png';
367 } elseif( $conf->License == "none" ) {
368 $conf->RightsUrl = $conf->RightsText = $conf->RightsCode = $conf->RightsIcon = "";
369 } else {
370 $conf->RightsUrl = importRequest( "RightsUrl", "" );
371 $conf->RightsText = importRequest( "RightsText", "" );
372 $conf->RightsCode = importRequest( "RightsCode", "" );
373 $conf->RightsIcon = importRequest( "RightsIcon", "" );
374 }
375
376 $conf->Shm = importRequest( "Shm", "none" );
377 $conf->MCServers = importRequest( "MCServers" );
378
379 /* Test memcached servers */
380
381 if ( $conf->Shm == 'memcached' && $conf->MCServers ) {
382 $conf->MCServerArray = array_map( 'trim', explode( ',', $conf->MCServers ) );
383 foreach ( $conf->MCServerArray as $server ) {
384 $error = testMemcachedServer( $server );
385 if ( $error ) {
386 $errs["MCServers"] = $error;
387 break;
388 }
389 }
390 } else if ( $conf->Shm == 'memcached' ) {
391 $errs["MCServers"] = "Please specify at least one server if you wish to use memcached";
392 }
393
394 if( $conf->posted && ( 0 == count( $errs ) ) ) {
395 do { /* So we can 'continue' to end prematurely */
396 $conf->Root = ($conf->RootPW != "");
397
398 /* Load up the settings and get installin' */
399 $local = writeLocalSettings( $conf );
400 $wgCommandLineMode = false;
401 chdir( ".." );
402 eval($local);
403 $wgDBadminuser = "root";
404 $wgDBadminpassword = $conf->RootPW;
405 $wgCommandLineMode = true;
406 $wgUseDatabaseMessages = false; /* FIXME: For database failure */
407 require_once( "includes/Setup.php" );
408 chdir( "config" );
409
410 require_once( "../maintenance/InitialiseMessages.inc" );
411
412 $wgTitle = Title::newFromText( "Installation script" );
413 $wgDatabase = Database::newFromParams( $wgDBserver, "root", $conf->RootPW, "", 1 );
414 $wgDatabase->mIgnoreErrors = true;
415
416 @$myver = mysql_get_server_info( $wgDatabase->mConn );
417 if( $myver ) {
418 $conf->Root = true;
419 print "<li>Connected as root (automatic)</li>\n";
420 } else {
421 print "<li>MySQL error " . ($err = mysql_errno() ) .
422 ": " . htmlspecialchars( mysql_error() );
423 $ok = false;
424 switch( $err ) {
425 case 1045:
426 case 2000:
427 if( $conf->Root ) {
428 $errs["RootPW"] = "Check password";
429 } else {
430 print "<li>Trying regular user...\n";
431 /* Try the regular user... */
432 $wgDBadminuser = $wgDBuser;
433 $wgDBadminpassword = $wgDBpassword;
434 $wgDatabase = Database::newFromParams( $wgDBserver, $wgDBuser, $wgDBpassword, "", 1 );
435 $wgDatabase->isOpen();
436 $wgDatabase->mIgnoreErrors = true;
437 @$myver = mysql_get_server_info( $wgDatabase->mConn );
438 if( !$myver ) {
439 $errs["DBuser"] = "Check name/pass";
440 $errs["DBpassword"] = "or enter root";
441 $errs["DBpassword2"] = "password below";
442 $errs["RootPW"] = "Got root?";
443 print " need password.</li>\n";
444 } else {
445 $conf->Root = false;
446 $conf->RootPW = "";
447 print " ok.</li>\n";
448 # And keep going...
449 $ok = true;
450 }
451 break;
452 }
453 case 2002:
454 case 2003:
455 $errs["DBserver"] = "Connection failed";
456 break;
457 default:
458 $errs["DBserver"] = "Couldn't connect to database";
459 break;
460 }
461 if( !$ok ) continue;
462 }
463
464 if ( !$wgDatabase->isOpen() ) {
465 $errs["DBserver"] = "Couldn't connect to database";
466 continue;
467 }
468
469 print "<li>Connected to database... $myver";
470 if( version_compare( $myver, "4.0.0" ) >= 0 ) {
471 print "; enabling MySQL 4 enhancements";
472 $conf->DBmysql4 = true;
473 $local = writeLocalSettings( $conf );
474 }
475 print "</li>\n";
476
477 @$sel = mysql_select_db( $wgDBname, $wgDatabase->mConn );
478 if( $sel ) {
479 print "<li>Database <tt>" . htmlspecialchars( $wgDBname ) . "</tt> exists</li>\n";
480 } else {
481 $res = $wgDatabase->query( "CREATE DATABASE `$wgDBname`" );
482 if( !$res ) {
483 print "<li>Couldn't create database <tt>" .
484 htmlspecialchars( $wgDBname ) .
485 "</tt>; try with root access or check your username/pass.</li>\n";
486 $errs["RootPW"] = "&lt;- Enter";
487 continue;
488 }
489 print "<li>Created database <tt>" . htmlspecialchars( $wgDBname ) . "</tt></li>\n";
490 }
491
492 $wgDatabase->selectDB( $wgDBname );
493
494 if( $wgDatabase->tableExists( "cur" ) ) {
495 print "<li>There are already MediaWiki tables in this database. Checking if updates are needed...</li>\n";
496
497 # Create user if required
498 if ( $conf->Root ) {
499 $conn = Database::newFromParams( $wgDBserver, $wgDBuser, $wgDBpassword, $wgDBname, 1 );
500 if ( $conn->isOpen() ) {
501 print "<li>DB user account ok</li>\n";
502 $conn->close();
503 } else {
504 print "<li>Granting user permissions...</li>\n";
505 dbsource( "../maintenance/users.sql", $wgDatabase );
506 }
507 }
508 print "<pre>\n";
509 chdir( ".." );
510 flush();
511 do_all_updates();
512 chdir( "config" );
513
514 print "</pre>\n";
515 print "<li>Finished update checks.</li>\n";
516 } else {
517 # FIXME: Check for errors
518 print "<li>Creating tables...";
519 dbsource( "../maintenance/tables.sql", $wgDatabase );
520 dbsource( "../maintenance/interwiki.sql", $wgDatabase );
521 dbsource( "../maintenance/archives/patch-userlevels-defaultgroups.sql", $wgDatabase );
522 print " done.</li>\n";
523
524 print "<li>Initializing data...";
525 $wgDatabase->query( "INSERT INTO site_stats (ss_row_id,ss_total_views," .
526 "ss_total_edits,ss_good_articles) VALUES (1,0,0,0)" );
527 # setting up the db user
528 if( $conf->Root ) {
529 print "<li>Granting user permissions...</li>\n";
530 dbsource( "../maintenance/users.sql", $wgDatabase );
531 }
532
533 if( $conf->SysopName ) {
534 $u = User::newFromName( $conf->getSysopName() );
535 if ( 0 == $u->idForName() ) {
536 $u->addToDatabase();
537 $u->setPassword( $conf->getSysopPass() );
538 $u->addRight( "sysop" );
539 $u->addRight( "bureaucrat" );
540 $u->saveSettings();
541 print "<li>Created sysop account <tt>" .
542 htmlspecialchars( $conf->SysopName ) . "</tt>.</li>\n";
543 } else {
544 print "<li>Could not create user - already exists!</li>\n";
545 }
546 } else {
547 print "<li>Skipped sysop account creation, no name given.</li>\n";
548 }
549
550 print "<li>Initialising log pages...";
551 $logs = array(
552 "uploadlogpage" => "uploadlogpagetext",
553 "dellogpage" => "dellogpagetext",
554 "protectlogpage" => "protectlogtext",
555 "blocklogpage" => "blocklogtext"
556 );
557 $metaNamespace = Namespace::getWikipedia();
558 $now = wfTimestampNow();
559 $won = wfInvertTimestamp( $now );
560 foreach( $logs as $page => $text ) {
561 $logTitle = $wgDatabase->strencode( $wgLang->ucfirst( str_replace( " ", "_", wfMsgNoDB( $page ) ) ) );
562 $logText = $wgDatabase->strencode( wfMsgNoDB( $text ) );
563 $wgDatabase->query( "INSERT INTO cur (cur_namespace,cur_title,cur_text," .
564 "cur_restrictions,cur_timestamp,inverse_timestamp,cur_touched) " .
565 "VALUES ($metaNamespace,'$logTitle','$logText','sysop','$now','$won','$now')" );
566 }
567 print "</li>\n";
568
569 $titleobj = Title::newFromText( wfMsgNoDB( "mainpage" ) );
570 $title = $titleobj->getDBkey();
571 $sql = "INSERT INTO cur (cur_namespace,cur_title,cur_text,cur_timestamp,inverse_timestamp,cur_touched,cur_user,cur_user_text) " .
572 "VALUES (0,'$title','" .
573 wfStrencode( wfMsg( "mainpagetext" ) . "\n\n" . wfMsg( "mainpagedocfooter" ) ) .
574 "','$now','$won','$now',0,'MediaWiki default')";
575 $wgDatabase->query( $sql, $fname );
576
577 print "<li><pre>";
578 initialiseMessages();
579 print "</pre></li>\n";
580 }
581
582 /* Write out the config file now that all is well */
583 print "<p>Creating LocalSettings.php...</p>\n\n";
584 $localSettings = "<" . "?php$endl$local$endl?" . ">";
585
586 if( version_compare( phpversion(), "4.3.2" ) >= 0 ) {
587 $xt = "xt"; # Refuse to overwrite an existing file
588 } else {
589 $xt = "wt"; # 'x' is not available prior to PHP 4.3.2. We did check above, but race conditions blah blah
590 }
591 $f = fopen( "LocalSettings.php", $xt );
592
593 if( $f == false ) {
594 dieout( "<p>Couldn't write out LocalSettings.php. Check that the directory permissions are correct and that there isn't already a file of that name here...</p>\n" .
595 "<p>Here's the file that would have been written, try to paste it into place manually:</p>\n" .
596 "<pre>\n" . htmlspecialchars( $localSettings ) . "</pre>\n" );
597 }
598 fwrite( $f, $localSettings );
599 fclose( $f );
600
601 print "<p>Success! Move the config/LocalSettings.php file into the parent directory, then follow
602 <a href='{$conf->ScriptPath}/index.php'>this link</a> to your wiki.</p>\n";
603
604 } while( false );
605 }
606 ?>
607 </ul>
608
609
610 <?php
611
612 if( count( $errs ) ) {
613 /* Display options form */
614
615 if( $conf->posted ) {
616 echo "<p class='error'>Something's not quite right yet; make sure everything below is filled out correctly.</p>\n";
617 }
618 ?>
619
620 <form name="config" method="post">
621
622
623 <h2>Site config</h2>
624
625 <dl class="setup">
626 <dd>
627 <?php
628 aField( $conf, "Sitename", "Site name:" );
629 ?>
630 </dd>
631 <dt>
632 Your site name should be a relatively short word. It'll appear as the namespace
633 name for 'meta' pages as well as throughout the user interface. Good site names
634 are things like "<a href="http://www.wikipedia.org/">Wikipedia</a>" and
635 "<a href="http://openfacts.berlios.de/">OpenFacts</a>"; avoid punctuation,
636 which may cause problems.
637 </dt>
638
639 <dd>
640 <?php
641 aField( $conf, "EmergencyContact", "Contact e-mail" );
642 ?>
643 </dd>
644 <dt>
645 This will be used as the return address for password reminders and
646 may be displayed in some error conditions so visitors can get in
647 touch with you.
648 </dt>
649
650 <dd>
651 <label class='column' for="LanguageCode">Language</label>
652 <select id="LanguageCode" name="LanguageCode">
653 <?php
654 $list = getLanguageList();
655 foreach( $list as $code => $name ) {
656 $sel = ($code == $conf->LanguageCode) ? 'selected="selected"' : '';
657 echo "\t\t<option value=\"$code\" $sel>$name</option>\n";
658 }
659 ?>
660 </select>
661 </dd>
662 <dt>
663 You may select the language for the user interface of the wiki...
664 Some localizations are less complete than others. This also controls
665 the character encoding; Unicode is more flexible, but Latin-1 may be
666 more compatible with older browsers for some languages. Unicode will
667 be used where not specified otherwise.
668 </dt>
669
670 <dd>
671 <label class='column'>Copyright/license metadata</label>
672 <div>Select one:</div>
673
674 <ul class="plain">
675 <li><?php aField( $conf, "License", "no license metadata", "radio", "none" ); ?></li>
676 <li><?php aField( $conf, "License", "GNU Free Documentation License 1.2 (Wikipedia-compatible)", "radio", "gfdl" ); ?></li>
677 <li><?php
678 aField( $conf, "License", "a Creative Commons license...", "radio", "cc" );
679 $partner = "MediaWiki";
680 $exit = urlencode( "$wgServer{$conf->ScriptPath}/config/index.php?License=cc&RightsUrl=[license_url]&RightsText=[license_name]&RightsCode=[license_code]&RightsIcon=[license_button]" );
681 $icon = urlencode( "$wgServer$wgUploadPath/wiki.png" );
682 $ccApp = htmlspecialchars( "http://creativecommons.org/license/?partner=$partner&exit_url=$exit&partner_icon_url=$icon" );
683 print "<a href=\"$ccApp\">choose</a>";
684 ?> (link will wipe out any other data in this form!)
685 <?php if( $conf->License == "cc" ) { ?>
686 <ul>
687 <li><?php aField( $conf, "RightsIcon", "<img src=\"" . htmlspecialchars( $conf->RightsIcon ) . "\" alt='icon' />", "hidden" ); ?></li>
688 <li><?php aField( $conf, "RightsText", htmlspecialchars( $conf->RightsText ), "hidden" ); ?></li>
689 <li><?php aField( $conf, "RightsCode", "code: " . htmlspecialchars( $conf->RightsCode ), "hidden" ); ?></li>
690 <li><?php aField( $conf, "RightsUrl", "<a href=\"" . htmlspecialchars( $conf->RightsUrl ) . "\">" . htmlspecialchars( $conf->RightsUrl ) . "</a>", "hidden" ); ?></li>
691 </ul>
692 <?php } ?>
693 </li>
694 </ul>
695 </dd>
696 <dt>
697 MediaWiki can include a basic license notice, icon, and machine-readable
698 copyright metadata if your wiki's content is to be licensed under
699 the GNU FDL or a Creative Commons license. If you're not sure, leave
700 it at "none".
701 </dt>
702
703
704 <dd>
705 <?php aField( $conf, "SysopName", "Sysop account name:", "" ) ?>
706 </dd>
707 <dd>
708 <?php aField( $conf, "SysopPass", "password:", "password" ) ?>
709 </dd>
710 <dd>
711 <?php aField( $conf, "SysopPass2", "again:", "password" ) ?>
712 </dd>
713 <dt>
714 A sysop user account can lock or delete pages, block problematic IP
715 addresses from editing, and other maintenance tasks. If creating a new
716 wiki database, a sysop account will be created with the given name
717 and password.
718 </dt>
719
720 <dd>
721 <label class='column'>Shared memory caching</label>
722 <div>Select one:</div>
723
724 <ul class="plain">
725 <li><?php aField( $conf, "Shm", "no caching", "radio", "none" ); ?></li>
726 <?php
727 if ( $conf->turck ) {
728 echo "<li>";
729 aField( $conf, "Shm", "Turck MMCache", "radio", "turck" );
730 echo "</li>";
731 }
732 ?>
733 <li><?php aField( $conf, "Shm", "Memcached", "radio", "memcached" ); ?></li>
734 <li><?php aField( $conf, "MCServers", "Memcached servers", "" ) ?></li>
735 </ul>
736 </dd>
737 <dt>
738 Using a shared memory system such as Turck MMCache or Memcached will speed
739 up MediaWiki significantly. Memcached is the best solution but needs to be
740 installed. Specify the server addresses and ports in a comma-separted list. Only
741 use Turck shared memory if the wiki will be running on a single Apache server.
742 </dl>
743
744 <h2>Database config</h2>
745
746 <dl class="setup">
747 <dd><?php
748 aField( $conf, "DBserver", "MySQL server" );
749 ?></dd>
750 <dt>
751 If your database server isn't on your web server, enter the name
752 or IP address here.
753 </dt>
754
755 <dd><?php
756 aField( $conf, "DBname", "Database name" );
757 ?></dd>
758 <dd><?php
759 aField( $conf, "DBuser", "DB username" );
760 ?></dd>
761 <dd><?php
762 aField( $conf, "DBpassword", "DB password", "password" );
763 ?></dd>
764 <dd><?php
765 aField( $conf, "DBpassword2", "again", "password" );
766 ?></dd>
767 <dt>
768 If you only have a single user account and database available,
769 enter those here. If you have database root access (see below)
770 you can specify new accounts/databases to be created.
771 </dt>
772
773
774 <dd>
775 <?php
776 aField( $conf, "RootPW", "DB root password", "password" );
777 ?>
778 </dd>
779 <dt>
780 You will only need this if the database and/or user account
781 above don't already exist.
782 Do <em>not</em> type in your machine's root password! MySQL
783 has its own "root" user with a separate password. (It might
784 even be blank, depending on your configuration.)
785 </dt>
786
787 <dd>
788 <label class='column'>&nbsp;</label>
789 <input type="submit" value="Install!" />
790 </dd>
791 </dl>
792
793
794 </form>
795
796 <?php
797 }
798
799 /* -------------------------------------------------------------------------------------- */
800
801 function writeAdminSettings( $conf ) {
802 return "
803 \$wgDBadminuser = \"{$conf->DBadminuser}\";
804 \$wgDBadminpassword = \"{$conf->DBadminpassword}\";
805 ";
806 }
807
808 function escapePhpString( $string ) {
809 return strtr( $string,
810 array(
811 "\n" => "\\n",
812 "\r" => "\\r",
813 "\t" => "\\t",
814 "\\" => "\\\\",
815 "\$" => "\\\$",
816 "\"" => "\\\""
817 ));
818 }
819
820 function writeLocalSettings( $conf ) {
821 $conf->DBmysql4 = @$conf->DBmysql4 ? 'true' : 'false';
822 $conf->UseImageResize = $conf->UseImageResize ? 'true' : 'false';
823 $conf->PasswordSender = $conf->EmergencyContact;
824 if( preg_match( '/^([a-z]+)-latin1$/', $conf->LanguageCode, $m ) ) {
825 $conf->LanguageCode = $m[1];
826 $conf->Latin1 = true;
827 } else {
828 $conf->Latin1 = false;
829 }
830 $zlib = ($conf->zlib ? "" : "# ");
831 $magic = ($conf->ImageMagick ? "" : "# ");
832 $convert = ($conf->ImageMagick ? $conf->ImageMagick : "/usr/bin/convert" );
833 $pretty = ($conf->prettyURLs ? "" : "# ");
834 $ugly = ($conf->prettyURLs ? "# " : "");
835 $rights = ($conf->RightsUrl) ? "" : "# ";
836
837 switch ( $conf->Shm ) {
838 case 'memcached':
839 $memcached = 'true';
840 $turck = '#';
841 $mcservers = var_export( $conf->MCServerArray, true );
842 break;
843 case 'turck':
844 $memcached = 'false';
845 $mcservers = 'array()';
846 $turck = '';
847 break;
848 default:
849 $memcached = 'false';
850 $mcservers = 'array()';
851 $turck = '#';
852 }
853
854
855 $file = @fopen( "/dev/urandom", "r" );
856 if ( $file ) {
857 $proxyKey = bin2hex( fread( $file, 32 ) );
858 fclose( $file );
859 } else {
860 $proxyKey = "";
861 for ( $i=0; $i<8; $i++ ) {
862 $proxyKey .= dechex(mt_rand(0, 0x7fffffff));
863 }
864 print "<li>Warning: \$wgProxyKey is insecure</li>\n";
865 }
866
867 # Add slashes to strings for double quoting
868 $slconf = array_map( "escapePhpString", get_object_vars( $conf ) );
869 if( $conf->License == 'gfdl' ) {
870 # Needs literal string interpolation for the current style path
871 $slconf['RightsIcon'] = $conf->RightsIcon;
872 }
873
874 $sep = (DIRECTORY_SEPARATOR == "\\") ? ";" : ":";
875 return "
876 # This file was automatically generated by the MediaWiki installer.
877 # If you make manual changes, please keep track in case you need to
878 # recreate them later.
879
880 \$IP = \"{$slconf['IP']}\";
881 ini_set( \"include_path\", \".$sep\$IP$sep\$IP/includes$sep\$IP/languages\" );
882 require_once( \"includes/DefaultSettings.php\" );
883
884 # If PHP's memory limit is very low, some operations may fail.
885 " . ($conf->raiseMemory ? '' : '# ' ) . "ini_set( 'memory_limit', '20M' );" . "
886
887 if ( \$wgCommandLineMode ) {
888 if ( isset( \$_SERVER ) && array_key_exists( 'REQUEST_METHOD', \$_SERVER ) ) {
889 die( \"This script must be run from the command line\\n\" );
890 }
891 } elseif ( empty( \$wgConfiguring ) ) {
892 ## Compress output if the browser supports it
893 {$zlib}if( !ini_get( 'zlib.output_compression' ) ) @ob_start( 'ob_gzhandler' );
894 }
895
896 \$wgSitename = \"{$slconf['Sitename']}\";
897
898 \$wgScriptPath = \"{$slconf['ScriptPath']}\";
899 \$wgScript = \"\$wgScriptPath/index.php\";
900 \$wgRedirectScript = \"\$wgScriptPath/redirect.php\";
901
902 ## If using PHP as a CGI module, use the ugly URLs
903 {$pretty}\$wgArticlePath = \"\$wgScript/\$1\";
904 {$ugly}\$wgArticlePath = \"\$wgScript?title=\$1\";
905
906 \$wgStylePath = \"\$wgScriptPath/skins\";
907 \$wgStyleDirectory = \"\$IP/skins\";
908 \$wgLogo = \"\$wgStylePath/common/images/wiki.png\";
909
910 \$wgUploadPath = \"\$wgScriptPath/images\";
911 \$wgUploadDirectory = \"\$IP/images\";
912
913 \$wgEmergencyContact = \"{$slconf['EmergencyContact']}\";
914 \$wgPasswordSender = \"{$slconf['PasswordSender']}\";
915
916 \$wgDBserver = \"{$slconf['DBserver']}\";
917 \$wgDBname = \"{$slconf['DBname']}\";
918 \$wgDBuser = \"{$slconf['DBuser']}\";
919 \$wgDBpassword = \"{$slconf['DBpassword']}\";
920
921 ## To allow SQL queries through the wiki's Special:Askaql page,
922 ## uncomment the next lines. THIS IS VERY INSECURE. If you want
923 ## to allow semipublic read-only SQL access for your sysops,
924 ## you should define a MySQL user with limited privileges.
925 ## See MySQL docs: http://www.mysql.com/doc/en/GRANT.html
926 #
927 # \$wgAllowSysopQueries = true;
928 # \$wgDBsqluser = \"sqluser\";
929 # \$wgDBsqlpassword = \"sqlpass\";
930
931 \$wgDBmysql4 = \$wgEnablePersistentLC = {$conf->DBmysql4};
932
933 ## Shared memory settings
934 \$wgUseMemcached = $memcached;
935 \$wgMemCachedServers = $mcservers;
936 {$turck}\$wgUseTurckShm = function_exists( 'mmcache_get' ) && php_sapi_name() == 'apache';
937
938 ## To enable image uploads, make sure the 'images' directory
939 ## is writable, then uncomment this:
940 # \$wgDisableUploads = false;
941 \$wgUseImageResize = {$conf->UseImageResize};
942 {$magic}\$wgUseImageMagick = true;
943 {$magic}\$wgImageMagickConvertCommand = \"{$convert}\";
944
945 ## If you have the appropriate support software installed
946 ## you can enable inline LaTeX equations:
947 # \$wgUseTeX = true;
948 \$wgMathPath = \"{\$wgUploadPath}/math\";
949 \$wgMathDirectory = \"{\$wgUploadDirectory}/math\";
950 \$wgTmpDirectory = \"{\$wgUploadDirectory}/tmp\";
951
952 \$wgLocalInterwiki = \$wgSitename;
953
954 \$wgLanguageCode = \"{$slconf['LanguageCode']}\";
955 \$wgUseLatin1 = " . ($conf->Latin1 ? 'true' : 'false') . ";\n
956
957 \$wgProxyKey = \"$proxyKey\";
958
959 ## Default skin: you can change the default skin. Use the internal symbolic
960 ## names, ie 'standard', 'nostalgia', 'cologneblue', 'monobook':
961 # \$wgDefaultSkin = 'monobook';
962
963 ## For attaching licensing metadata to pages, and displaying an
964 ## appropriate copyright notice / icon. GNU Free Documentation
965 ## License and Creative Commons licenses are supported so far.
966 {$rights}\$wgEnableCreativeCommonsRdf = true;
967 \$wgRightsPage = \"\"; # Set to the title of a wiki page that describes your license/copyright
968 \$wgRightsUrl = \"{$slconf['RightsUrl']}\";
969 \$wgRightsText = \"{$slconf['RightsText']}\";
970 \$wgRightsIcon = \"{$slconf['RightsIcon']}\";
971 # \$wgRightsCode = \"{$slconf['RightsCode']}\"; # Not yet used
972 ";
973 }
974
975 function dieout( $text ) {
976 die( $text . "\n\n</body>\n</html>" );
977 }
978
979 function importVar( &$var, $name, $default = "" ) {
980 if( isset( $var[$name] ) ) {
981 $retval = $var[$name];
982 if ( get_magic_quotes_gpc() ) {
983 $retval = stripslashes( $retval );
984 }
985 } else {
986 $retval = $default;
987 }
988 return $retval;
989 }
990
991 function importPost( $name, $default = "" ) {
992 return importVar( $_POST, $name, $default );
993 }
994
995 function importRequest( $name, $default = "" ) {
996 return importVar( $_REQUEST, $name, $default );
997 }
998
999 function aField( &$conf, $field, $text, $type = "", $value = "" ) {
1000 if( $type != "" ) {
1001 $xtype = "type=\"$type\"";
1002 } else {
1003 $xtype = "";
1004 }
1005
1006 if(!(isset($id)) or ($id == "") ) $id = $field;
1007 $nolabel = ($type == "radio") || ($type == "hidden");
1008 if( $nolabel ) {
1009 echo "\t\t<label>";
1010 } else {
1011 echo "\t\t<label class='column' for=\"$id\">$text</label>\n";
1012 }
1013
1014 if( $type == "radio" && $value == $conf->$field ) {
1015 $checked = "checked='checked'";
1016 } else {
1017 $checked = "";
1018 }
1019 echo "\t\t<input $xtype name=\"$field\" id=\"$id\" $checked value=\"";
1020 if( $type == "radio" ) {
1021 echo htmlspecialchars( $value );
1022 } else {
1023 echo htmlspecialchars( $conf->$field );
1024 }
1025 echo "\" />\n";
1026 if( $nolabel ) {
1027 echo " $text</label>\n";
1028 }
1029
1030 global $errs;
1031 if(isset($errs[$field])) echo "<span class='error'>" . $errs[$field] . "</span>\n";
1032 }
1033
1034 function getLanguageList() {
1035 global $wgLanguageNames;
1036 if( !isset( $wgLanguageNames ) ) {
1037 $wgContLanguageCode = "xxx";
1038 function wfLocalUrl( $x ) { return $x; }
1039 function wfLocalUrlE( $x ) { return $x; }
1040 require_once( "../languages/Names.php" );
1041 }
1042
1043 $codes = array();
1044 $latin1 = array( "da", "de", "en", "es", "fr", "nl", "sv" );
1045
1046 $d = opendir( "../languages" );
1047 while( false !== ($f = readdir( $d ) ) ) {
1048 if( preg_match( '/Language([A-Z][a-z_]+)\.php$/', $f, $m ) ) {
1049 $code = str_replace( '_', '-', strtolower( $m[1] ) );
1050 if( in_array( $code, $latin1 ) ) {
1051 $codes[$code] = "$code - " . $wgLanguageNames[$code] . " - Unicode";
1052 $codes[$code.'-latin1'] = "$code - " . $wgLanguageNames[$code] . " - Latin-1";
1053 } else {
1054 $codes[$code] = "$code - " . $wgLanguageNames[$code];
1055 }
1056 }
1057 }
1058 closedir( $d );
1059 ksort( $codes );
1060 return $codes;
1061 }
1062
1063 # Test a memcached server
1064 function testMemcachedServer( $server ) {
1065 $hostport = explode(":", $server);
1066 $errstr = false;
1067 $fp = false;
1068 if ( !function_exists( 'fsockopen' ) ) {
1069 $errstr = "Can't connect to memcached, fsockopen() not present";
1070 }
1071 if ( !$errstr && count( $hostport ) != 2 ) {
1072 $errstr = 'Please specify host and port';
1073 var_dump( $hostport );
1074 }
1075 if ( !$errstr ) {
1076 list( $host, $port ) = $hostport;
1077 $errno = 0;
1078 $fsockerr = '';
1079
1080 $fp = @fsockopen( $host, $port, $errno, $fsockerr, 1.0 );
1081 if ( $fp === false ) {
1082 $errstr = "Cannot connect to memcached on $host:$port : $fsockerr";
1083 }
1084 }
1085 if ( !$errstr ) {
1086 $command = "version\r\n";
1087 $bytes = fwrite( $fp, $command );
1088 if ( $bytes != strlen( $command ) ) {
1089 $errstr = "Cannot write to memcached socket on $host:$port";
1090 }
1091 }
1092 if ( !$errstr ) {
1093 $expected = "VERSION ";
1094 $response = fread( $fp, strlen( $expected ) );
1095 if ( $response != $expected ) {
1096 $errstr = "Didn't get correct memcached response from $host:$port";
1097 }
1098 }
1099 if ( $fp ) {
1100 fclose( $fp );
1101 }
1102 if ( !$errstr ) {
1103 echo "<li>Connected to memcached on $host:$port successfully";
1104 }
1105 return $errstr;
1106 }
1107 ?>
1108
1109 </body>
1110 </html>